home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 1996 September
/
Software of the Month Club 1996 September.iso
/
pc
/
os2
/
remora
/
uninstal.cmd
< prev
Wrap
OS/2 REXX Batch file
|
1995-08-20
|
875b
|
43 lines
/*
* Inspire Remora deinstallation program
*/
'@Echo off'
'cls'
curdir = directory()
rc = stream('remora.exe','c','query exists')
if rc = '' then
do
say 'Sorry, REMORA.EXE not found. Must not be right directory. Terminating.'
exit
end
say ''
say ' **WARNING: This program totally uninstalls Inspire Remora.'
say ''
say 'Press [Enter] (or CTRL-C then [Enter] to abort).'
Pull dummy .
say ''
say 'Working...'
call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
call SysLoadFuncs
call SysDestroyObject "<Remora_Program>"
call SysDestroyObject "<Remora_Folder>"
call SysDestroyObject "<Remora_Bootup>"
call SysIni 'USER', 'Remora'
say "Okay, now just delete REMORA.EXE, REMORA.HLP, INSTALL.CMD,"
say "UNINSTALL.CMD, and other data files to totally remove Remora."
say ""
say "Deinstallation finished."
say ""